Initializes a new instance of the 
ImGearARTFilledPolygon class object.
Syntax
            
            
            
            
            'Declaration
 
Public Function New( _
   ByVal () As ImGearPoint, _
   ByVal  As IImGearRGBQuad, _
   ByVal  As Boolean _
)
             
        
            
            'Usage
 
Dim points() As ImGearPoint
Dim fillColor As IImGearRGBQuad
Dim isHighlighted As Boolean
 
Dim instance As New ImGearARTFilledPolygon(points, fillColor, isHighlighted)
             
        
            
            public ImGearARTFilledPolygon( 
   ImGearPoint[] ,
   IImGearRGBQuad ,
   bool 
)
             
        
            
            public: ImGearARTFilledPolygon( 
   ImGearPoint[]* ,
   IImGearRGBQuad* ,
   bool 
)
             
        
            
            public:
ImGearARTFilledPolygon( 
   array<ImGearPoint>^ ,
   IImGearRGBQuad^ ,
   bool 
)
             
        
             
        
            Parameters
- points
- Raw points array to create a polygon from.
- fillColor
- Fill color of the mark.
- isHighlighted
- Specifies whether the mark is highlighted or not.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also